home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000072_news@columbia.edu _Fri Apr 11 14:09:55 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA19360
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 11 Apr 1997 14:09:54 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id OAA08225
  7.     for kermit.misc@watsun; Fri, 11 Apr 1997 14:09:50 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: [HELP NEEDED] Using external protocols with SCO XENIX
  12. Date: 11 Apr 1997 18:09:48 GMT
  13. Organization: Columbia University
  14. Lines: 26
  15. Message-ID: <5ilupc$r6r$1@apakabar.cc.columbia.edu>
  16. References: <5ilt2d$r4n$1@nntp-3.io.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6887
  19.  
  20. In article <5ilt2d$r4n$1@nntp-3.io.com>,
  21. Archer Graphics  <tigger@io.com> wrote:
  22. : I am trying to get external protocols to work on the latest version of
  23. : Kermit (pre)compiled for SCO Xenix/386, but everytime I enter
  24. : set protocol zmodem, I get
  25. : "?Sorry, REDIRECT capability required for external protocols."
  26. : Normally Kermit puts keywords in ALL CAPS, but if REDIRECT is a keyword, I
  27. : can find no mention of it.
  28. That's because it is not a command in the Xenix version of C-Kermit 6.0.
  29. This is either because the underlying APIs (the wait() system call and the
  30. <sys/wait.h> header file with the symbols WIFEXITED and WEXITSTATUS defined
  31. in it) are not there or else because we are ignorant of them (we don't have
  32. any Xenix systems in-house, nor do we have Telnet/FTP access to any for
  33. development and testing).
  34.  
  35. If you have a Xenix development system, try building from source code and
  36. add -DCK_REDIR to the CFLAGS.  If it compiles without complaint, then it
  37. should work *if* your version of sz/rz allows its standard i/o to be
  38. redirected.
  39.  
  40. If you don't have a Xenix development system, maybe someone else out there 
  41. who does will be willing to give it a shot and report back.
  42.  
  43. - Frank